home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 012 / function.arc / FUNCTION.DOC < prev    next >
Encoding:
Text File  |  1984-10-31  |  3.1 KB  |  85 lines

  1.      The FUNCTION command enables the use of eighteen of the function keys that
  2. PC-DOS doesn't use.  The important difference between this and other keyboard
  3. definers (such as ANSI.SYS), is that this one only intercepts function keys
  4. during 'command line input' (DOS function 0xA).  The result is that editors and
  5. other programs which look for function keys as single keystrokes don't get the
  6. new definition instead.  To invoke, type:
  7.  
  8.     FUNCTION
  9.  
  10. The FUNCTION handler will identify itself and return to the command line
  11. prompt.  The function keys now perform as follows:
  12.  
  13.  
  14. F7        Recalls the most recent 8 command lines (including any 
  15.         lines supplied by function keys) in reverse order.  The most
  16.         recent line is recalled first.
  17.  
  18. F6
  19. F8 - F10
  20. ALT F1 - F10    These keys become user-definable, single keystroke
  21.         commands.  The definitions are assigned using
  22.         the KEY utility:
  23.  
  24.     KEY fkey text
  25.  
  26.     In this command line, 'fkey' is '6', '8', '9', '0' or 'A1' - 'A0'
  27.     depending on which function key is to be defined, and 'text' is any
  28.     normally accepted command line (limit 128 characters).  For example:
  29.  
  30.     KEY 0 DIR A:
  31.  
  32.     Would cause the directory for drive A to be displayed upon pressing F10.
  33.         
  34.     KEY <return>    Displays the current settings of all function keys.
  35.  
  36. Home    Clear the screen and home the cursor.
  37. PgUp    Sound the bell.  (Useful for announcing program completion)
  38. PgDn    Display the time.
  39. End    Send form feed to LPT1:
  40.  
  41. FILES:        FUNC11.COM    FUNCTION for PC-DOS 1.1
  42.         FUNC21.COM    FUNCTION for PC-DOS 2.1
  43.         FUNC3.COM    FUNCTION for PC-DOS 3.0 *
  44.         FUNCM211.COM    FUNCTION for MS-DOS 2.11 **
  45.  
  46.         KEY11.COM    KEY for PC-DOS 1.1
  47.         KEY21.COM    KEY for PC-DOS 2.1
  48.         KEY3.COM    KEY for PC-DOS 3.0 *
  49.         KEYM211.COM    KEY for MS-DOS 2.11 **
  50.  
  51. *  Not yet tested on PC-AT
  52. ** Only tested on the Columbia MPC.
  53.  
  54. These programs are provided at no charge to the user.  Please feel free to
  55. share them with your friends.  The essence of 'user-supported' software is
  56. provide personal computer users with quality software without high prices
  57. (or ANY price if you choose).  If you find this  program useful, a
  58. contribution would be greatly appreciated.  ($10 suggested)
  59.  
  60.                        Jim Weisz
  61.                  J & C Computer Services
  62.                     P.O. Box 1356
  63.                   Lombard, Il.  60148
  64.  
  65.  
  66.  
  67.  
  68. If you need a version to run on a different machine  (MS-DOS only, please!),
  69. send me a diskette (and a prepaid return mailer) with the following
  70. information on it.
  71.  
  72. 1)  Format the diskette using the /S option.
  73. 2)  Use DEBUG to create an image of DOS while it's running as follows:
  74.  
  75.     A>DEBUG
  76.     -RCX
  77.     CX 0000
  78.     :8000
  79.     -N DOS.BIN
  80.     -W 0:0
  81.     Writing 8000 bytes
  82.     -Q
  83.  
  84. I'll get the disk with the new version back to you ASAP.
  85.